type encoding/binary.encoder

15 uses

	encoding/binary (current package)
		binary.go#L412: 	e := &encoder{order: order, buf: buf}
		binary.go#L443: 	e := &encoder{order: order, buf: buf}
		binary.go#L468: 	e := &encoder{order: order, buf: pos}
		binary.go#L750: type encoder coder
		binary.go#L758: func (e *encoder) bool(x bool) {
		binary.go#L773: func (e *encoder) uint8(x uint8) {
		binary.go#L784: func (e *encoder) uint16(x uint16) {
		binary.go#L795: func (e *encoder) uint32(x uint32) {
		binary.go#L806: func (e *encoder) uint64(x uint64) {
		binary.go#L813: func (e *encoder) int8(x int8) { e.uint8(uint8(x)) }
		binary.go#L817: func (e *encoder) int16(x int16) { e.uint16(uint16(x)) }
		binary.go#L821: func (e *encoder) int32(x int32) { e.uint32(uint32(x)) }
		binary.go#L825: func (e *encoder) int64(x int64) { e.uint64(uint64(x)) }
		binary.go#L896: func (e *encoder) value(v reflect.Value) {
		binary.go#L963: func (e *encoder) skip(v reflect.Value) {